diff options
Diffstat (limited to 'src/routes/user/[user]/badges/+page.svelte')
| -rw-r--r-- | src/routes/user/[user]/badges/+page.svelte | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/src/routes/user/[user]/badges/+page.svelte b/src/routes/user/[user]/badges/+page.svelte index b0c83fd6..c9bb7454 100644 --- a/src/routes/user/[user]/badges/+page.svelte +++ b/src/routes/user/[user]/badges/+page.svelte @@ -1,4 +1,5 @@ <script lang="ts"> + import Spacer from '$lib/Layout/Spacer.svelte'; import AWC from './../../../../lib/User/BadgeWall/AWC.svelte'; import { user, type User } from '$lib/Data/AniList/user'; import type { Badge } from '../../../../graphql/$types'; @@ -559,7 +560,7 @@ <b>Notice:</b> The Badge Wall overseer system has detected badges containing AI-generated material on your wall. {shadowHiddenCount} of your badges have been shadow hidden. - <p></p> + <Spacer /> You may use the "Un-shadow Hide Badges" button to unhide these badges, from where you will be required to use the hide feature to hide these badges from the public, while allowing them to stay visible to you as the account holder. @@ -570,10 +571,10 @@ material, this includes Badge Wall. If you have collected badges with AI-generated elements, kindly use the hide feature to hide these badges from the public, while allowing them to stay visible to you as the account holder. - <p></p> + <Spacer /> Failure to comply with this request at your earliest convenience will result in the hiding of all badges from your Badge Wall. - <p></p> + <Spacer /> <button on:click={async () => { noticeDismissed = true; @@ -586,7 +587,7 @@ </div> {/if} - <p></p> + <Spacer /> <div class="card"> {#if authorised} @@ -661,7 +662,7 @@ ) ])} - <p></p> + <Spacer /> {#if error} <p style="color: red;">{error}</p> @@ -738,7 +739,7 @@ <small>Must be full date and time, defaults to now if any fields empty</small> </span> - <p></p> + <Spacer /> <div class="edit-row-2"> <input @@ -826,7 +827,7 @@ </div> {/if} - <p></p> + <Spacer /> {#if loadQueryParameter === 'none'} <div class="card"> @@ -885,7 +886,7 @@ <Popup fullscreen onLeave={() => (importMode = false)} show={importMode}> {$locale().user.badges.importMode.title} - <p></p> + <Spacer /> <input type="text" @@ -904,7 +905,7 @@ size="20" /> - <p></p> + <Spacer /> <input type="checkbox" id="import_links" name="import_links" bind:checked={importLinks} /> {$locale().user.badges.importMode.importLinks.title} @@ -912,12 +913,12 @@ {$locale().user.badges.importMode.importLinks.hint} </SettingHint> - <p></p> + <Spacer /> <input type="checkbox" id="import_links" name="import_links" bind:checked={importReplies} /> {$locale().user.badges.importMode.importReplies} - <p></p> + <Spacer /> <button on:click={() => { @@ -932,7 +933,7 @@ {$locale().user.badges.importMode.fetch} </button> - <p></p> + <Spacer /> <details> <summary>{$locale().user.badges.importMode.dangerous}</summary> @@ -954,7 +955,7 @@ </details> {#if importImages && importImages.length > 0} - <p></p> + <Spacer /> {$locale({ values: { @@ -979,7 +980,7 @@ <Popup fullscreen onLeave={() => (migrateMode = false)} show={migrateMode}> Migrate Category - <p></p> + <Spacer /> <input type="text" @@ -999,7 +1000,7 @@ /> <SettingHint lineBreak>Leave category empty to migrate all to or from uncategorised.</SettingHint> - <p></p> + <Spacer /> <button on:click={() => { @@ -1023,7 +1024,7 @@ versa. </SettingHint> - <p></p> + <Spacer /> <input type="text" @@ -1035,7 +1036,7 @@ /> <SettingHint lineBreak>Leave category field empty to hide all.</SettingHint> - <p></p> + <Spacer /> <button on:click={() => { |